home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d21 / dvglue10.arc / TVGETBUF.C < prev    next >
C/C++ Source or Header  |  1988-08-13  |  1KB  |  29 lines

  1. /*=======================================================*/
  2. /*  TVGETBUF.C                                           */
  3. /*                                                       */
  4. /*  (c) Copyright 1988 Ralf Brown  All Rights Reserved   */
  5. /*  May be freely copied for noncommercial use, so long  */
  6. /*  as this copyright notice remains intact, and any     */
  7. /*  changes are marked in the comment blocks preceding   */
  8. /*  functions.                                           */
  9. /*=======================================================*/
  10.  
  11. #include "tvapi.h"
  12.  
  13. /*======================================================*/
  14. /* TVgetbuf  get info on window's shadow buffer         */
  15. /*   Ralf Brown 4/2/88                                  */
  16. /*======================================================*/
  17.  
  18. void pascal TVgetbuf(OBJECT win,char far **buffer, int *size, int *flag)
  19. {
  20.    _BX = OBJSEG(win) ;
  21.    _AX = 0x1024 ;
  22.    geninterrupt(0x15) ;
  23.    *flag = _DL ;
  24.    *size = _CX ;
  25.    *buffer = MK_FP(_ES,_DI) ;
  26. }
  27.  
  28. /* End of TVGETBUF.C */
  29.